home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2003-151.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  84 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12392);
  11.  script_version ("$Revision: 1.5 $");
  12.  script_cve_id("CAN-2003-0194", "CVE-2003-0145");
  13.  
  14.  name["english"] = "RHSA-2003-151: arpwatch";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated tcpdump packages that fix an infinite loop vulnerability and drop
  21.   privileges on startup are now available.
  22.  
  23.   Tcpdump is a command-line tool for monitoring network traffic.
  24.  
  25.   A vulnerability exists in tcpdump before 3.7.2 and is related to an
  26.   inability to handle unknown RADIUS attributes properly. This vulnerability
  27.   allows remote attackers to cause a denial of service (infinite loop).
  28.  
  29.   The Red Hat tcpdump packages advertise that, by default, tcpdump will drop
  30.   privileges to user \'pcap\'. Due to a compilation error this did not
  31.   happen, and tcpdump would run as root unless the \'-U\' flag was specified.
  32.  
  33.   Users of tcpdump are advised to upgrade to these errata packages, which
  34.   contain a patch correcting the RADIUS issue and are compiled so that by
  35.   default tcpdump will drop privileges to the \'pcap\' user.
  36.  
  37.  
  38.  
  39.  
  40. Solution : http://rhn.redhat.com/errata/RHSA-2003-151.html
  41. Risk factor : High';
  42.  
  43.  script_description(english:desc["english"]);
  44.  
  45.  summary["english"] = "Check for the version of the arpwatch packages";
  46.  script_summary(english:summary["english"]);
  47.  
  48.  script_category(ACT_GATHER_INFO);
  49.  
  50.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  51.  family["english"] = "Red Hat Local Security Checks";
  52.  script_family(english:family["english"]);
  53.  
  54.  script_dependencies("ssh_get_info.nasl");
  55.  
  56.  script_require_keys("Host/RedHat/rpm-list");
  57.  exit(0);
  58. }
  59.  
  60. include("rpm.inc");
  61. if ( rpm_check( reference:"arpwatch-2.1a11-12.2.1AS.4", release:"RHEL2.1") )
  62. {
  63.  security_hole(0);
  64.  exit(0);
  65. }
  66. if ( rpm_check( reference:"libpcap-0.6.2-12.2.1AS.4", release:"RHEL2.1") )
  67. {
  68.  security_hole(0);
  69.  exit(0);
  70. }
  71. if ( rpm_check( reference:"tcpdump-3.6.2-12.2.1AS.4", release:"RHEL2.1") )
  72. {
  73.  security_hole(0);
  74.  exit(0);
  75. }
  76.  
  77. if ( rpm_exists(rpm:"arpwatch-", release:"RHEL2.1") )
  78. {
  79.  set_kb_item(name:"CAN-2003-0194", value:TRUE);
  80.  set_kb_item(name:"CVE-2003-0145", value:TRUE);
  81. }
  82.  
  83. set_kb_item(name:"RHSA-2003-151", value:TRUE);
  84.